home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / testi32.cpp < prev    next >
C/C++ Source or Header  |  1999-03-17  |  6KB  |  204 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: testi32.cpp 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 09/05/1997  
  9. // Date Last Modified: 03/17/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. This is a test program for the INT32 class.
  16.  
  17. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  18. All those who put this code or its derivatives in a commercial
  19. product MUST mention this copyright in their documentation for
  20. users of the products in which this code or its derivative
  21. classes are used. Otherwise, you have the freedom to redistribute
  22. verbatim copies of this source code, adapt it to your specific
  23. needs, or improve the code and release your improvements to the
  24. public provided that the modified files carry prominent notices
  25. stating that you changed the files and the date of any change.
  26.  
  27. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  28. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  29. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  30. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  31. CORRECTION.
  32. */
  33. // ----------------------------------------------------------- // 
  34. #include <iostream.h>
  35. #include "int32.h"
  36.  
  37. void pause()
  38. {
  39.   cout << endl;
  40.   cout << "Press enter to continue..." << endl;
  41.   cin.get();
  42. }
  43.  
  44. void SkipToEol(istream &s)
  45. // Used to clear istream
  46. {
  47.   char c;
  48.   s.clear();
  49.   while(s.get(c) && c != '\n') { ; }
  50. }
  51.  
  52. template<class TYPEX, class TYPEY>
  53. inline void OperatorTest(TYPEX x, TYPEY y)
  54. {
  55.   char *tf[2] = {"FALSE", "TRUE"};
  56.   cout << endl;
  57.   cout << "Value x = " << x << ", Value y = " << y << endl;
  58.   TYPEX z;
  59.   cout << x << " += " << y << " = "; z = x; z += y; cout << z << endl;
  60.   cout << x << " -= " << y << " = "; z = x; z -= y; cout << z << endl;
  61.   cout << x << " *= " << y << " = "; z = x; z *= y; cout << z << endl;
  62.   cout << x << " /= " << y << " = "; z = x; z /= y; cout << z << endl;
  63.   cout << x << " * " << y << " = " ; z = (x * y); cout << z << endl;
  64.   cout << x << " / " << y << " = " ; z = (x / y); cout << z << endl;
  65.   cout << x << " + " << y << " = " ; z = (x + y); cout << z << endl;
  66.   cout << x << " - " << y << " = " ; z = (x - y); cout << z << endl;
  67.   cout << x << " == " << y << " = " << tf[(x == y)] << endl;
  68.   cout << x << " != " << y << " = " << tf[(x != y)] << endl;
  69.   cout << x << " <= " << y << " = " << tf[(x <= y)] << endl;
  70.   cout << x << " >= " << y << " = " << tf[(x >= y)] << endl;
  71.   cout << x << " < " << y << " = " << tf[(x < y)] << endl;
  72.   cout << x << " > " << y << " = " << tf[(x > y)] << endl;
  73.   cout << x << "++ = "; z = x; z++; cout << z << endl;
  74.   cout << x << "-- = "; z = x; z--; cout << z << endl; 
  75.   cout << "++" << x << " = "; z = x; ++z; cout << z << endl;
  76.   cout << "--" << x << " = "; z = x; --z; cout << z << endl;
  77. }
  78.  
  79. int main()
  80. {
  81.   INT32 a = LWORDPositiveLimit;
  82.   cout << "INT32 positive limit = " << a << endl;
  83.  
  84.   INT32 b(LWORDNegitiveLimit);
  85.   cout << "INT32 negitive limit = " << b << endl;
  86.  
  87.   INT32 c;
  88.  
  89.   c = ULWORDLimit;
  90.   cout << "Assigning INT32 unsigned limit: " << c << endl;
  91.  
  92.   pause();
  93.   
  94.   cout << "Testing INT32 copy consturctor..." << endl;
  95.   INT32 d(a);
  96.   cout << d << endl;
  97.  
  98.   cout << endl;
  99.   cout << "Testing INT32 assignment operator..." << endl;
  100.   INT32 e;
  101.   e = a;
  102.   cout << e << endl;
  103.  
  104.   pause();
  105.  
  106.   cout << "Testing overloaded operators (INT32, INT32)..." << endl;
  107.   __LWORD__ buf1, buf2, al, bl;
  108.   
  109.   cout << "Enter first integer: ";
  110.   cin >> buf1;
  111.   if(cin) {
  112.     a = buf1;
  113.     al = buf1;
  114.     cout << "Enter second integer: ";
  115.     cin >> buf2;
  116.   }
  117.   else {
  118.     cout << "Input stream broken. Exiting..." << endl;
  119.     return 0;
  120.   }
  121.   if(cin) {
  122.     b = buf2;
  123.     bl = buf2;
  124.   }
  125.   else {
  126.     cout << "Input stream broken. Exiting..." << endl;
  127.     return 0;
  128.   }
  129.  
  130.   SkipToEol(cin);
  131.     
  132.   cout << endl;
  133.   
  134.   OperatorTest(a, b);
  135.  
  136.   pause();
  137.  
  138.   cout << "Testing overloaded operators (INT32, __LWORD__)..." << endl;
  139.   OperatorTest(a, bl);
  140.  
  141.   pause();
  142.  
  143.   cout << "Testing overloaded operators (__LWORD__, INT32)..." << endl;
  144.   OperatorTest(al, b);
  145.   
  146.   pause();
  147.  
  148.   cout << "Testing overloaded operators (INT32, __WORD__)..." << endl;
  149.   OperatorTest(a, (__WORD__)bl);
  150.  
  151.   pause();
  152.  
  153.   cout << "Testing overloaded operators (__WORD__, INT32)..." << endl;
  154.   OperatorTest((__WORD__)al, b);
  155.  
  156.   pause();
  157.  
  158.   cout << "Testing overloaded operators (INT32, __SWORD__)..." << endl;
  159.   OperatorTest(a, (__SWORD__)bl);
  160.  
  161.   pause();
  162.  
  163.   cout << "Testing overloaded operators (__SWORD__, INT32)..." << endl;
  164.   OperatorTest((__SWORD__)al, b);
  165.  
  166.   pause();
  167.   
  168.   cout << "Testing overloaded operators (INT32, __UWORD__)..." << endl;
  169.   OperatorTest(a, (__UWORD__)bl);
  170.  
  171.   pause();
  172.  
  173.   cout << "Testing overloaded operators (__UWORD__, INT32)..." << endl;
  174.   OperatorTest((__UWORD__)al, b);
  175.  
  176.   pause();
  177.  
  178.   cout << "Testing overloaded operators (INT32, __USWORD__)..." << endl;
  179.   OperatorTest(a, (__USWORD__)bl);
  180.  
  181.   pause();
  182.  
  183.   cout << "Testing overloaded operators (__USWORD__, INT32)..." << endl;
  184.   OperatorTest((__USWORD__)al, b);
  185.  
  186.   pause();
  187.   
  188.   cout << "Testing overloaded operators (INT32, __SBYTE__)..." << endl;
  189.   OperatorTest(a, 'B');
  190.  
  191.   pause();
  192.  
  193.   cout << "Testing overloaded operators (__SBYTE__, INT32)..." << endl;
  194.   OperatorTest('A', b);
  195.  
  196.   return 0;
  197. }
  198. // ----------------------------------------------------------- //
  199. // ------------------------------- //
  200. // --------- End of File --------- //
  201. // ------------------------------- //
  202.  
  203.  
  204.